Skip to main content
GET
/
v1
/
workflow_custom_field_selections
/
{id}
[DEPRECATED] Retrieves a workflow custom field selection
curl --request GET \
  --url https://api.rootly.com/v1/workflow_custom_field_selections/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "type": "workflow_custom_field_selections",
    "attributes": {
      "workflow_id": "<string>",
      "custom_field_id": 123,
      "incident_condition": "ANY",
      "selected_option_ids": [
        123
      ],
      "values": [
        "<string>"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

workflow_custom_field_selection found

data
object
required